Making report titles editable at runtime

IQA adds a parameter to its SRSS reports to let users modify the report title at run-time, so that the title that displays on the report is changed just for that run. To prevent users from changing report titles at run-time, you just disable the Modify field at runtime checkbox on the reports you save.

The availability of the Modify field at runtime option is controlled by report parameters in the .RDL.

 If you create any RDL files outside of iMIS, you can give them this functionality by adding the ReportTitle parameter on the XML tab:

The "ReportTitle" parameter controls how users can affect the report’s title, if at all.

Code for the ReportTitle parameter

<ReportParameters>

  <ReportParameter Name="ReportTitle">

    <DataType>String</DataType>

    <AllowBlank>true</AllowBlank>

    <Prompt>Report Title</Prompt>

  </ReportParameter></ReportParameters>